home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 May / SGI IRIX 6.5 Complementary Applications 2004 May.iso / dist / OpenOffice.idb / usr / OpenOffice / program / nswrapper.z / nswrapper
Encoding:
Text File  |  2003-07-29  |  198 b   |  11 lines

  1. #!/bin/sh
  2.  
  3. # if netscape is not found, specify full path here
  4. NETSCAPE=netscape
  5.  
  6. if ${NETSCAPE} -remote "openURL($1,new-window)" 2>&1 | egrep -si "not running on display"; then
  7.     ${NETSCAPE} $1
  8. fi
  9.  
  10.  
  11.